﻿html,
body {
 margin: 0;
}
.page-404 {
  height: 100vh;
  width: 100%;
  position: relative;
}
#menu-mobile{
  display: none;
}
.imagem-fundo{
  width: 100%;
  height: 100%;
  position: absolute;
}
.imagem-fundo::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0px;
  background: linear-gradient(90deg, rgba(0, 146, 133, 1) -5%, rgba(0, 152, 131, 0) 100%);
}
.imagem-fundo img{
  width: 100%;
  height: 100%;
}
.texto{
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
  height: 100%;
  gap: 40px;
}
.texto h3{
  font-family: 'frutiger-light';
  font-size: 76px;
  font-weight: bold;
  line-height: 85px;
  letter-spacing: 0em;
  text-align: left;
  color: white;
  
}
.texto p{
  font-family: 'frutiger-light';
  font-size: 26px;
  font-weight: bold;
  line-height: 29px;
  letter-spacing: -0.055em;
  text-align: center;
  color: white;
  width: 28%;
  
}
.botoes{
  display: flex;
  gap: 40px;
}
.botoes .btn-verde{
  width: 201px;
  height: 63px;
  /* padding: 18px 36px 18px 36px; */
  border-radius: 40px;
  font-family: 'frutiger-light';
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
 background-color: #38B069;
  color: #FFFFFF;
  text-decoration: none;
  border: none;
}
.botoes .btn-branco{
  width: 126px;
  height: 63px;
  /* padding: 18px 36px 18px 36px; */
  border-radius: 40px;
  font-family: 'frutiger-light';
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  letter-spacing: 0em;
  text-align: center;
  background-color: #FFFFFF;
  color: #64635F;
  text-decoration: none;
  border: none;
}
.texto input{
  width: 397px;
  height: 68px;
  border-radius: 39px;
  border-color: red;
  border-style: unset;
  font-family: 'frutiger-light';
}
.texto input::placeholder{
  font-family: Inter;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
  color: #CBD1CF;


}
input:focus{
  outline: none;
}
.custom-search {
  position: relative;
}

.custom-search input[type="search"] {
  padding-left: 60px; /* Ajuste o valor conforme necessário */
  padding-right: 20px;
}

.custom-search img {
  position: absolute;
  top: 50%;
  left: 20px; /* Ajuste o valor conforme necessário */
  transform: translateY(-50%);
  width: 20px; /* Ajuste o tamanho da imagem conforme necessário */
  height: 20px;
}
@media(max-width: 1540px){
.texto p {
  width: 45%;
}
}
@media(max-width: 820px){
.texto p {
  width: 62%;
}
#menu-mobile{
  display: block;
}
}
@media(max-width: 440px){
  .texto p {
    width: 100%;
}
.texto input {
  width: 360px;
  height: 60px;
}
}
@media(max-width: 375px){
  .botoes {
    gap: 20px;
}
}
@media(max-width: 320px){
  .texto input {
    width: 310px;
  }
  .botoes {
    display: flex;
    gap: 10px;
}
.botoes .btn-verde {
  width: 165px;
  height: 63px;
  padding: 18px 10px 18px 10px;
}
.texto {
  gap: 20px;
}
}